You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > MatrixInt Structure > MatrixInt Methods > SetRow Method > MatrixInt.SetRow Method ([In] TMtxVecInt, int)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MatrixInt.SetRow Method ([In] TMtxVecInt, int)

Copies values from vector to matrix row.

Syntax
C#
Visual Basic
public TMtxInt SetRow([In] TMtxVecInt Vec, int Row);

Copy all Vec elements to the calling matrix Row row. The IntPrecision property of the calling matrix is adjusted automatically. An exception is raised, if array bounds are overrun.

var A: TMtxInt; V: TVecInt; begin CreateIt(A); CreateIt(V); try A.Size(1,2); V.SetIt([1,2, 2,4]); A.SetCol(V,0); finally FreeIt(V); FreeIt(A); end; end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!